home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 9 / Night Owl CD-ROM (NOPV9) (Night Owl Publisher) (1993).ISO / 037a / power305.zip / TAPE.BAT < prev    next >
DOS Batch File  |  1993-03-15  |  464b  |  30 lines

  1. @echo off
  2. rem
  3. rem (c) Copyright 1992
  4. rem Colorado Memory Systems Inc.
  5. rem All Rights Reserved.
  6. rem
  7.  
  8. rem Change Drive
  9. %1:
  10.  
  11. rem Change Directory
  12. cd %2
  13.  
  14. rem Now run the tape software
  15. rem If we are running from cmdline, create an error log
  16.  
  17. if NOT "%3" == ""    goto cmdline
  18. TAPE.EXE %3 %4 %5 %6
  19. goto end
  20.  
  21. :cmdline
  22. TAPE.EXE %3 %4 %5 %6 /b="error.log"
  23.  
  24. rem Let the user see the results before we return
  25.  
  26. if NOT "%3" == "" pause
  27. :end
  28. @echo on
  29.  
  30.